File: .eslintrc

package info (click to toggle)
node-immutable 3.8.2%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 5,984 kB
  • sloc: makefile: 6; sh: 6
file content (19 lines) | stat: -rw-r--r-- 510 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  "extends": "./node_modules/fbjs-scripts/eslint/.eslintrc",
  "rules": {
    // These are functional errors that could either be fixed or be locally disabled in specific
    // files
    "no-bitwise": 0,
    "constructor-super": 0,
    "no-this-before-super": 0,
    "no-self-compare": 0,
    "operator-assignment": 0,
    "consistent-return": 0,

    // These are stylistic errors that could be easily fixed
    "semi": 0,
    "comma-dangle": 0,
    "space-before-function-paren": 0,
    "curly": 0,
  }
}