Add GraphQL ESLint plugin to the codebase
Showing
... | @@ -8,7 +8,7 @@ | ... | @@ -8,7 +8,7 @@ |
"dev-server": "NODE_OPTIONS=\"--max-old-space-size=3584\" node scripts/frontend/webpack_dev_server.js", | "dev-server": "NODE_OPTIONS=\"--max-old-space-size=3584\" node scripts/frontend/webpack_dev_server.js", | ||
"file-coverage": "scripts/frontend/file_test_coverage.js", | "file-coverage": "scripts/frontend/file_test_coverage.js", | ||
"lint-docs": "scripts/lint-doc.sh", | "lint-docs": "scripts/lint-doc.sh", | ||
"internal:eslint": "eslint --cache --max-warnings 0 --report-unused-disable-directives --ext .js,.vue", | "internal:eslint": "eslint --cache --max-warnings 0 --report-unused-disable-directives --ext .js,.vue,.graphql", | ||
"internal:stylelint": "stylelint -q '{ee/,}app/assets/stylesheets/**/*.{css,scss}'", | "internal:stylelint": "stylelint -q '{ee/,}app/assets/stylesheets/**/*.{css,scss}'", | ||
"prejest": "yarn check-dependencies", | "prejest": "yarn check-dependencies", | ||
"jest": "jest --config jest.config.js", | "jest": "jest --config jest.config.js", | ||
... | @@ -205,6 +205,7 @@ | ... | @@ -205,6 +205,7 @@ |
"@babel/plugin-transform-modules-commonjs": "^7.10.1", | "@babel/plugin-transform-modules-commonjs": "^7.10.1", | ||
"@gitlab/eslint-plugin": "10.0.0", | "@gitlab/eslint-plugin": "10.0.0", | ||
"@gitlab/stylelint-config": "2.6.0", | "@gitlab/stylelint-config": "2.6.0", | ||
"@graphql-eslint/eslint-plugin": "^2.3.0", | |||
"@testing-library/dom": "^7.16.2", | "@testing-library/dom": "^7.16.2", | ||
"@vue/test-utils": "1.2.0", | "@vue/test-utils": "1.2.0", | ||
"acorn": "^6.3.0", | "acorn": "^6.3.0", | ||
... | @@ -261,7 +262,8 @@ | ... | @@ -261,7 +262,8 @@ |
"bootstrap-vue": "https://docs.gitlab.com/ee/development/fe_guide/dependencies.html#bootstrapvue" | "bootstrap-vue": "https://docs.gitlab.com/ee/development/fe_guide/dependencies.html#bootstrapvue" | ||
}, | }, | ||
"resolutions": { | "resolutions": { | ||
"chokidar": "^3.4.0" | "chokidar": "^3.4.0", | ||
"@types/node": "14.17.5" | |||
}, | }, | ||
"engines": { | "engines": { | ||
"node": ">=12.22.1", | "node": ">=12.22.1", | ||
... | ... |
This diff is collapsed.
Please register or sign in to comment