-
-
Notifications
You must be signed in to change notification settings - Fork 560
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- [ ] Better configuration. - [ ] Undefined `document` and possibly other browser APIs. Dr. ImprovedSpaghetti, TYSM for all the hassles and BS I had to dig through. You have taught me discipline and seriousness by making me deal with the most ???? that nobody told anyone was to recommended way of doing thing. THANK YOU!
- Loading branch information
Showing
8 changed files
with
1,057 additions
and
954 deletions.
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 |
---|---|---|
|
@@ -27,7 +27,7 @@ jobs: | |
run: npm install --force | ||
|
||
- name: Run eslint | ||
run: npx eslint --config=tests/eslint_rules.config.mjs | ||
run: npx eslint | ||
continue-on-error: true | ||
|
||
# - name: Run JSLint | ||
|
@@ -40,11 +40,9 @@ jobs: | |
- name: Run npm test | ||
run: npm test | ||
|
||
- name: Install csslint using npm | ||
run: npm install -g [email protected] | ||
# - name: Install csslint using npm | ||
# run: npm install -g [email protected] | ||
|
||
# - name: Lint CSS files | ||
# run: | | ||
# for file in $(grep -rl --include='*.css' '' ./); do npx csslint --config tests/csslint_rules.json "$file"; done | ||
|
||
|
File renamed without changes.
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,2 @@ | ||
node_modules | ||
deno.lock |
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,15 @@ | ||
import js from "@eslint/js"; | ||
|
||
export default [ | ||
|
||
js.configs.recommended, | ||
{ | ||
rules: { | ||
"no-unused-vars": [ | ||
"error", | ||
{ destructuredArrayIgnorePattern: "^_" }, | ||
], | ||
}, | ||
}, | ||
|
||
]; |
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 |
---|---|---|
@@ -1,8 +1,6 @@ | ||
module.exports = { | ||
testPathIgnorePatterns: [ | ||
"/node_modules/" | ||
], | ||
testMatch: [ | ||
"**/tests/**/*.js" | ||
] | ||
}; | ||
export const testPathIgnorePatterns = [ | ||
"/node_modules/" | ||
]; | ||
export const testMatch = [ | ||
"**/tests/**/*.js" | ||
]; |
Oops, something went wrong.