mirror of
https://github.com/Akif9748/akf-forum.git
synced 2024-11-15 00:15:05 +03:00
26 lines
414 B
JSON
26 lines
414 B
JSON
|
{
|
||
|
// exclude public folder from linting
|
||
|
"ignorePatterns": ["public/"],
|
||
|
|
||
|
"env": {
|
||
|
"node": true,
|
||
|
"commonjs": true,
|
||
|
"es2021": true
|
||
|
},
|
||
|
"extends": "eslint:recommended",
|
||
|
"overrides": [
|
||
|
|
||
|
],
|
||
|
"parserOptions": {
|
||
|
"ecmaVersion": "latest"
|
||
|
},
|
||
|
"rules": {
|
||
|
|
||
|
"linebreak-style": [
|
||
|
"error",
|
||
|
"windows"
|
||
|
]
|
||
|
|
||
|
}
|
||
|
}
|