-
Notifications
You must be signed in to change notification settings - Fork 22
/
.eslintrc.js
53 lines (52 loc) · 1.49 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
"use strict";
module.exports = {
extends: "@adfinis/eslint-config/ember-addon",
settings: {
"import/internal-regex": "^(@projectcaluma|ember-caluma|dummy)/",
},
rules: {
// TODO: Migrate as suggested here:
// https://github.com/ember-cli/eslint-plugin-ember/blob/master/docs/rules/no-runloop.md
"ember/no-runloop": "warn",
},
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 },
extends: ["plugin:n/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"],
},
},
],
};