aboutsummaryrefslogtreecommitdiffstats
path: root/dist-module/.eslintrc.json
diff options
context:
space:
mode:
Diffstat (limited to 'dist-module/.eslintrc.json')
-rw-r--r--dist-module/.eslintrc.json45
1 files changed, 45 insertions, 0 deletions
diff --git a/dist-module/.eslintrc.json b/dist-module/.eslintrc.json
new file mode 100644
index 000000000..33335abd8
--- /dev/null
+++ b/dist-module/.eslintrc.json
@@ -0,0 +1,45 @@
+{
+ "root": true,
+
+ "parserOptions": {
+ "ecmaVersion": 2015,
+ "sourceType": "module"
+ },
+
+ "globals": {
+ "define": false,
+ "Symbol": false
+ },
+
+ "overrides": [
+ {
+ "files": "jquery{,.slim}.module.min.js",
+
+ "parserOptions": {
+ "ecmaVersion": 2015,
+ "sourceType": "module"
+ }
+ },
+
+ {
+ "files": "jquery{,.slim}.module.js",
+ "extends": "../.eslintrc-browser.json",
+
+ "parserOptions": {
+ "ecmaVersion": 2015,
+ "sourceType": "module"
+ },
+
+ "rules": {
+
+ // That is okay for the built version
+ "no-multiple-empty-lines": "off",
+
+ // When custom compilation is used, the version string
+ // can get large. Accept that in the built version.
+ "max-len": "off",
+ "one-var": "off"
+ }
+ }
+ ]
+}