diff options
author | Oleg Gaidarenko <markelog@gmail.com> | 2016-05-10 12:12:28 +0300 |
---|---|---|
committer | Oleg Gaidarenko <markelog@gmail.com> | 2016-06-11 10:41:33 +0300 |
commit | 58c6ca9822afa42d3b40cca8edb0abe90a2bcb34 (patch) | |
tree | eb8c4c93031b4f0d88ffe5d58af7d58337c7b116 /dist | |
parent | a4474c9a0025095f82d734a9d7230eace2f08ef8 (diff) | |
download | jquery-58c6ca9822afa42d3b40cca8edb0abe90a2bcb34.tar.gz jquery-58c6ca9822afa42d3b40cca8edb0abe90a2bcb34.zip |
Build: ESLint details
Use eslint pragmas, fix new errors, etc
Closes gh-3148
Diffstat (limited to 'dist')
-rw-r--r-- | dist/.eslintrc | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/dist/.eslintrc b/dist/.eslintrc new file mode 100644 index 000000000..c86665b21 --- /dev/null +++ b/dist/.eslintrc @@ -0,0 +1,17 @@ +{ + "extends": "../src/.eslintrc", + "rules": { + // That is okay for built version + "no-multiple-empty-lines": "off", + + // Because sizze is not compatible to jquery code style + "lines-around-comment": "off", + "space-in-parens": "off", + "camelcase": "off", + "computed-property-spacing": "off", + "max-len": "off", + "dot-notation": "off", + "semi-spacing": "off", + "brace-style": "off" + } +} |