cuckoo/src/.eslintrc.json

30 lines
No EOL
664 B
JSON

{
"env": {
"browser": true,
"es6": true
},
"extends": [
"standard",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"no-tabs": "off",
"space-before-function-paren": "off",
"semi": "off",
"eol-last": "off",
"indent": "off"
}
}