forked from SlyCedix/bitburner-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
33 lines (32 loc) · 915 Bytes
/
.eslintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
module.exports = {
env: {
browser: true,
commonjs: true,
es6: false,
},
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended'],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 8,
sourceType: 'module',
ecmaFeatures: {
impliedStrict: true,
experimentalObjectRestSpread: true,
},
},
plugins: ['@typescript-eslint'],
ignorePatterns: ['NetscriptDefinitions.d.ts',],
rules: {
'max-len': ['warn', { 'code': 120 }],
'no-constant-condition': ['off'],
'no-debugger': ['off'],
'semi': ['warn', 'never'],
'no-trailing-spaces': ['warn'],
'quotes': ['warn', 'single'],
//@typescript-eslint
'@typescript-eslint/ban-ts-comment': ['off'],
'@typescript-eslint/indent': ['warn', 4],
}
}