Fix indentation

This commit is contained in:
Mara Kiefer
2022-09-16 11:56:35 +02:00
parent e9a81ad2a8
commit 45e9c132a9

View File

@@ -1,37 +1,37 @@
{ {
"extends": [ "extends": [
"eslint:recommended", "eslint:recommended",
"plugin:@sap/cds/recommended", "plugin:@sap/cds/recommended",
"plugin:cloud-cap-samples/recommended" "plugin:cloud-cap-samples/recommended"
], ],
"plugins": [ "plugins": [
"cloud-cap-samples" "cloud-cap-samples"
], ],
"env": { "env": {
"browser": true, "browser": true,
"es2022": true, "es2022": true,
"node": true, "node": true,
"jest": true, "jest": true,
"mocha": true "mocha": true
}, },
"globals": { "globals": {
"SELECT": true, "SELECT": true,
"INSERT": true, "INSERT": true,
"UPDATE": true, "UPDATE": true,
"DELETE": true, "DELETE": true,
"CREATE": true, "CREATE": true,
"DROP": true, "DROP": true,
"cds": true "cds": true
}, },
"rules": { "rules": {
"no-console": "off", "no-console": "off",
"require-atomic-updates": "off", "require-atomic-updates": "off",
"require-await": "warn", "require-await": "warn",
"no-unused-vars": [ "no-unused-vars": [
"warn", "warn",
{ {
"argsIgnorePattern": "_" "argsIgnorePattern": "_"
} }
] ]
} }
} }