-
Notifications
You must be signed in to change notification settings - Fork 0
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
d0958e0
commit 77b5614
Showing
6 changed files
with
3,051 additions
and
2,458 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
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
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 +1 @@ | ||
v18.16.0 | ||
v20.1.0 |
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 @@ | ||
import eslintConfigPrettier from "eslint-config-prettier" | ||
|
||
export default [ | ||
eslintConfigPrettier, | ||
{ | ||
languageOptions: { | ||
sourceType: "module", | ||
ecmaVersion: 2017, | ||
}, | ||
rules: { | ||
indent: ["error", 2], | ||
"linebreak-style": ["error", "unix"], | ||
quotes: ["error", "double"], | ||
semi: ["error", "never"], | ||
}, | ||
}, | ||
] |
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 |
---|---|---|
|
@@ -2,56 +2,25 @@ | |
"name": "joy-con-drum-kit", | ||
"version": "1.0.0", | ||
"description": "Joy-Con Drum Kit", | ||
"type": "module", | ||
"scripts": { | ||
"build": "parcel build src/index.html --public-url ./ --no-source-maps", | ||
"start": "parcel src/index.html --open chrome", | ||
"prepare": "husky install", | ||
"lint": "eslint --cache src", | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"keywords": [], | ||
"author": "Jordan Duabe @j4ckofalltrades <[email protected]>", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"eslint": "^8.51.0", | ||
"eslint": "^9.1.1", | ||
"eslint-config": "^0.3.0", | ||
"eslint-config-prettier": "^9.0.0", | ||
"husky": "^8.0.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"husky": "^9.0.11", | ||
"joy-con-webhid": "^0.7.0", | ||
"lint-staged": "^14.0.1", | ||
"parcel": "^2.9.3", | ||
"prettier": "^3.0.3" | ||
}, | ||
"eslintConfig": { | ||
"env": { | ||
"browser": true | ||
}, | ||
"extends": [ | ||
"eslint:recommended", | ||
"prettier" | ||
], | ||
"parserOptions": { | ||
"sourceType": "module", | ||
"ecmaVersion": 2017 | ||
}, | ||
"rules": { | ||
"indent": [ | ||
"error", | ||
2 | ||
], | ||
"linebreak-style": [ | ||
"error", | ||
"unix" | ||
], | ||
"quotes": [ | ||
"error", | ||
"double" | ||
], | ||
"semi": [ | ||
"error", | ||
"never" | ||
] | ||
} | ||
"lint-staged": "^15.2.2", | ||
"parcel": "^2.12.0", | ||
"prettier": "^3.2.5" | ||
}, | ||
"prettier": { | ||
"printWidth": 120, | ||
|
Oops, something went wrong.