mirror of
https://github.com/c9fe/22120.git
synced 2024-11-05 10:32:37 +01:00
17 lines
250 B
JavaScript
17 lines
250 B
JavaScript
module.exports = {
|
|
"env": {
|
|
"es2021": true,
|
|
"node": true
|
|
},
|
|
"extends": "eslint:recommended",
|
|
"parserOptions": {
|
|
"ecmaVersion": 13,
|
|
"sourceType": "module"
|
|
},
|
|
"ignorePatterns": [
|
|
"build/**/*.js"
|
|
],
|
|
"rules": {
|
|
}
|
|
};
|