mirror of
https://github.com/Akif9748/akf-forum.git
synced 2024-11-15 00:15:05 +03:00
25 lines
414 B
JSON
25 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"
|
|
]
|
|
|
|
}
|
|
}
|