๐Ÿ“ฆ malash / mp-svg-loader

๐Ÿ“„ .eslintrc ยท 41 lines
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
34
35
36
37
38
39
40
41{
  "extends": "airbnb-base",
  "plugins": [
    "import"
  ],
  "parser": "babel-eslint",
  "rules": {
    "arrow-parens": ["error", "as-needed", { "requireForBlockBody": false }],
    "consistent-return": ["off"],
    "prefer-rest-params": ["off"],
    "no-else-return": ["off"],
    "no-param-reassign": ["off"],
    "no-restricted-syntax": ["off"],
    "no-underscore-dangle": ["off", { "allowAfterThis": true, "allowAfterSuper": true }],
    "no-restricted-globals": ["off"],
    "guard-for-in": ["off"],
    "import/prefer-default-export": ["off"],
    "import/no-extraneous-dependencies": ["error", {
      "devDependencies": [
        "benchmark/**", // benchmark
        "test/**", // tape, common npm pattern
        "tests/**", // also common npm pattern
        "spec/**", // mocha, rspec-like pattern
        "**/__tests__/**", // jest pattern
        "test.js", // repos with a single test file
        "test-*.js", // repos with multiple top-level test files
        "**/*.test.js", // tests where the extension denotes that it is a test
        "**/*.spec.js", // tests where the extension denotes that it is a test
        "**/webpack.config.js", // webpack config
        "**/webpack.config.*.js", // webpack config
        "**/rollup.config.js", // rollup config
        "**/rollup.config.*.js", // rollup config
        "**/gulpfile.js", // gulp config
        "**/gulpfile.*.js", // gulp config
        "**/Gruntfile" // grunt config
      ],
      "optionalDependencies": false
    }]
  }
}