Files
BetterSEQTA-Plus/.eslintrc.json
T
2023-11-08 11:50:01 +11:00

18 lines
438 B
JSON

{
"env": {
"browser": true,
"commonjs": true,
"es2021": true,
"node": true // add this line to allow Node.js-specific globals
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module" // add this line to allow 'import' and 'export' statements
},
"rules": {
"indent": ["error", 2],
"quotes": ["error", "single"],
"semi": ["error", "always"]
}
}