summaryrefslogtreecommitdiffstats
path: root/workflow-designer-ui/src/main/frontend/.eslintrc.json
diff options
context:
space:
mode:
Diffstat (limited to 'workflow-designer-ui/src/main/frontend/.eslintrc.json')
-rw-r--r--workflow-designer-ui/src/main/frontend/.eslintrc.json48
1 files changed, 0 insertions, 48 deletions
diff --git a/workflow-designer-ui/src/main/frontend/.eslintrc.json b/workflow-designer-ui/src/main/frontend/.eslintrc.json
deleted file mode 100644
index 0ce8aa4c..00000000
--- a/workflow-designer-ui/src/main/frontend/.eslintrc.json
+++ /dev/null
@@ -1,48 +0,0 @@
-{
- "root": true,
-
- "parser": "babel-eslint",
-
- "extends": [
- "eslint:recommended",
- "plugin:react/recommended",
- "plugin:jest/recommended",
- "prettier"
- ],
-
- "plugins": ["prettier", "react"],
-
- "env": {
- "browser": true,
- "commonjs": true,
- "es6": true,
- "jest": true,
- "node": true
- },
-
- "parserOptions": {
- "ecmaVersion": 6,
- "sourceType": "module",
- "ecmaFeatures": {
- "jsx": true,
- "generators": true,
- "experimentalObjectRestSpread": true
- }
- },
-
- "rules": {
- "no-console": 0,
- "prettier/prettier": [
- "error",
- {
- "singleQuote": true,
- "jsxBracketSameLine": true,
- "tabWidth": 4
- }
- ]
- },
-
- "globals": {
- "DEBUG": false
- }
-}