-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1a62394
commit 2c734f4
Showing
4 changed files
with
918 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Ignore dev files | ||
config.js | ||
gulpfile.js | ||
|
||
# Ignore composer vendor directory | ||
vendor/ | ||
|
||
# Ignore all minified files | ||
*.min.js | ||
|
||
# Ignore vendor js files | ||
assets/js/admin/vendors/*.js | ||
assets/js/public/vendors/*.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
env: | ||
browser: true | ||
es6: true | ||
jquery: true | ||
extends: | ||
- 'eslint:recommended' | ||
- wordpress | ||
globals: | ||
wp: readonly | ||
Atomics: readonly | ||
SharedArrayBuffer: readonly | ||
parserOptions: | ||
ecmaVersion: 2018 | ||
rules: | ||
yoda: 'off' | ||
space-in-parens: 'off' | ||
vars-on-top: 'off' |
Oops, something went wrong.