-
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.
feat: add enforce-node-prefix eslint rule by default (#25)
- Loading branch information
Showing
14 changed files
with
97 additions
and
148 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
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 |
---|---|---|
|
@@ -13,3 +13,76 @@ | |
### Features | ||
|
||
* Upgrade to tegg by default ([#22](https://github.com/eggjs/egg-boilerplate-ts/issues/22)) ([3ca85c4](https://github.com/eggjs/egg-boilerplate-ts/commit/3ca85c4fc41267a851f9e5acda70a74b836d730b)) | ||
|
||
--- | ||
|
||
|
||
1.8.0 / 2022-06-18 | ||
================== | ||
|
||
**features** | ||
* [[`0bc89be`](http://github.com/eggjs/egg-boilerplate-ts/commit/0bc89be0aac6128efb3efaf4eac8788436aedfd2)] - feat: upgrade deps version (#20) (吖猩 <<[email protected]>>) | ||
|
||
1.7.0 / 2020-01-20 | ||
================== | ||
|
||
**features** | ||
* [[`144f5ae`](http://github.com/eggjs/egg-boilerplate-ts/commit/144f5ae09d6e196e92c3183a73d6bc26cb1795c0)] - feat: change tslint to eslint (#17) (吖猩 <<[email protected]>>) | ||
|
||
1.6.0 / 2019-02-21 | ||
================== | ||
|
||
**others** | ||
* [[`520c5b5`](http://github.com/eggjs/egg-boilerplate-ts/commit/520c5b56d95a07fab02b7dbc8987a9711fbe1795)] - chore: using egg-bin declarations instead of require (#14) (吖猩 <<[email protected]>>) | ||
|
||
1.5.0 / 2019-01-16 | ||
================== | ||
|
||
* deps: upgrade tslint (#13) | ||
|
||
1.4.0 / 2019-01-07 | ||
================== | ||
|
||
* chore: scripts optimization (#12) | ||
|
||
1.3.0 / 2018-09-11 | ||
================== | ||
|
||
* feat: update deps and code optimization (#11) | ||
|
||
1.2.3 / 2018-09-06 | ||
================== | ||
|
||
* fix: typo (#10) | ||
|
||
1.2.2 / 2018-06-14 | ||
================== | ||
|
||
* fix: TSLint script and lint error (#9) | ||
|
||
1.2.1 / 2018-05-30 | ||
================== | ||
|
||
* fix: fix the config & appInfo define (#7) | ||
* fix: git ignore. (#5) | ||
|
||
1.2.0 / 2018-04-13 | ||
================== | ||
|
||
* feat: adjust plugin (#4) | ||
* chore: ignore node_modules* folders (#3) | ||
|
||
1.1.1 / 2018-04-05 | ||
================== | ||
|
||
* fix: test (#2) | ||
|
||
1.1.0 / 2018-04-04 | ||
================== | ||
|
||
* feat: less code (#1) | ||
|
||
1.0.0 / 2018-04-04 | ||
================== | ||
|
||
* feat: first version |
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 |
---|---|---|
@@ -1,4 +1,7 @@ | ||
{ | ||
"root": true, | ||
"extends": "eslint-config-egg/typescript" | ||
"extends": [ | ||
"eslint-config-egg/typescript", | ||
"eslint-config-egg/lib/rules/enforce-node-prefix" | ||
] | ||
} |
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
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 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 |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
"ci-boilerplate": "npm run build && npm run install-deps && cd dist && npm run ci", | ||
"clean": "rm -rf dist", | ||
"build": "npm run clean && egg-init dist --force --silent --template=./", | ||
"install-deps": "cd dist && cnpm i" | ||
"install-deps": "cd dist && npm i" | ||
}, | ||
"homepage": "https://github.com/eggjs/egg-boilerplate-ts", | ||
"bugs": "https://github.com/eggjs/egg/issues", | ||
|
@@ -20,9 +20,8 @@ | |
}, | ||
"author": "TZ <[email protected]>", | ||
"devDependencies": { | ||
"cnpm": "^9.0.1", | ||
"egg-init": "^2.3.1", | ||
"eslint": "^8.34.0", | ||
"eslint-config-egg": "^12.1.0" | ||
"eslint-config-egg": "13" | ||
} | ||
} |