summaryrefslogtreecommitdiff
path: root/index.js
diff options
context:
space:
mode:
authorSam Light <samlight1994@gmail.com>2025-03-30 14:15:55 +0100
committerSam Light <samlight1994@gmail.com>2025-03-30 14:15:55 +0100
commit4929d2216a3f2d4dfb37b529a2499b5ff6d5bd48 (patch)
tree8a2c7e6656653c7076f5d123667dec1a8feee5aa /index.js
Created standard lightscale eslint config
Diffstat (limited to 'index.js')
-rw-r--r--index.js42
1 files changed, 42 insertions, 0 deletions
diff --git a/index.js b/index.js
new file mode 100644
index 0000000..a76dadc
--- /dev/null
+++ b/index.js
@@ -0,0 +1,42 @@
+export default {
+ 'root': true,
+ 'extends': [
+ 'eslint:recommended'
+ ],
+ 'globals': {
+ 'wp': true,
+ },
+ 'env': {
+ 'node': true,
+ 'es6': true,
+ 'amd': true,
+ 'browser': true,
+ 'jquery': true,
+ },
+ 'parser': '@babel/eslint-parser',
+ 'parserOptions': {
+ 'ecmaFeatures': {
+ 'globalReturn': true,
+ 'generators': false,
+ 'objectLiteralDuplicateProperties': false,
+ 'experimentalObjectRestSpread': true,
+ },
+ 'ecmaVersion': 2017,
+ 'sourceType': 'module',
+ 'requireConfigFile': false,
+ },
+ 'plugins': [],
+ 'settings': {
+ 'import/core-modules': [],
+ 'import/ignore': [
+ 'node_modules',
+ '\\.(coffee|scss|css|less|hbs|svg|json)$',
+ ]
+ },
+ 'rules': {
+ 'no-console': 0,
+ 'quotes': ['error', 'single'],
+ 'semi': ['warn', 'always'],
+ 'comma-dangle': 0,
+ },
+};