forked from reisxd/revanced-builder
-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rewrote everything. Done the following: 1. Refactored almost the entire codebase. 2. Formatted the unformatted files. 3. Changed the ESLint config file to a JSON file as it's unnecessary to be a JavaScript file. Removed the unnecessary ESLint plugins, and changed the config to use the recommended ESLint rules rather than the standard ESLint plugin. 4. Removed the unnecessary dependencies and developer dependencies. 5. Fixed a few typos. 6. Bumped the Node.js version requirement to v16. 7. Changed the Docker file Node.js image repo to utilize the latest LTS buster images to always use the latest LTS releases of Node.js.
- Loading branch information
1 parent
a1ff0d2
commit b670809
Showing
43 changed files
with
1,582 additions
and
3,062 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,14 @@ | ||
{ | ||
"env": { | ||
"browser": true, | ||
"commonjs": true, | ||
"es2021": true, | ||
"node": true | ||
}, | ||
"extends": "eslint:recommended", | ||
"overrides": [], | ||
"parserOptions": { | ||
"ecmaVersion": "latest" | ||
}, | ||
"rules": {} | ||
} |
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
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
Oops, something went wrong.