# [ESLint] .eslintrc.js
###### tags: `ESLint`
## 使用 jQuery 時出現 '$' is not defined
```javascript
globals: {
$: true, // 定義需要的 global variables,避免出現 '$' is not defined
},
```
## max-len:SVG path 值超過每行字數限制
:::info
[How to meet eslint max line length rules with long svg path?](https://stackoverflow.com/a/62063062 "How to meet eslint max line length rules with long svg path? - Stack Overflow")
:::
```javascript
rules: {
'max-len': [
'error',
{
ignorePattern: 'd="([\\s\\S]*?)"',
},
],
},
```
---
:::info
建立日期:2020-11-13
更新日期:2023-09-22
:::