forked from projectcaluma/ember-caluma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
54 lines (53 loc) · 1.38 KB
/
.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
"use strict";
module.exports = {
extends: "@adfinis-sygroup/eslint-config/ember-addon",
settings: {
"import/internal-regex": "^(@projectcaluma|ember-caluma)/",
},
overrides: [
// Customization for workspace
{
files: [
"./config/*.js",
"./packages/*/ember-cli-build.js",
"./packages/*/index.js",
"./packages/*/testem.js",
"./packages/*/blueprints/**/index.js",
"./packages/*/config/**/*.js",
"./packages/*/tests/dummy/config/**/*.js",
],
parserOptions: {
sourceType: "script",
},
env: {
browser: false,
node: true,
},
plugins: ["node"],
extends: ["plugin:node/recommended"],
},
// GraphQL
{
files: ["*.graphql"],
excludedFiles: "./packages/testing/addon/mirage-graphql/schema.graphql",
extends: "plugin:@graphql-eslint/operations-recommended",
parserOptions: {
operations: "./packages/**/addon/gql/**/*.graphql",
schema: "./packages/testing/addon/mirage-graphql/schema.graphql",
},
rules: {
"@graphql-eslint/selection-set-depth": ["off"],
},
},
// Mirage
{
files: [
"./packages/*/tests/**/*.js",
"./packages/testing/addon/mirage-graphql/**/*.js",
],
rules: {
"ember/no-array-prototype-extensions": ["off"],
},
},
],
};