forked from typescript-eslint/typescript-eslint
-
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.
chore: move config to top level where possible
- Loading branch information
1 parent
db44073
commit 19c4982
Showing
17 changed files
with
2,635 additions
and
8,224 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
|
@@ -59,3 +59,8 @@ typings/ | |
|
||
# next.js build output | ||
.next | ||
|
||
.DS_Store | ||
.vscode | ||
.idea | ||
dist |
File renamed without changes.
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
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,26 @@ | ||
TypeScript ESLint | ||
|
||
Originally extracted from: | ||
|
||
TypeScript ESLint Parser | ||
Copyright JS Foundation and other contributors, https://js.foundation | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
|
||
* Redistributions of source code must retain the above copyright | ||
notice, this list of conditions and the following disclaimer. | ||
* Redistributions in binary form must reproduce the above copyright | ||
notice, this list of conditions and the following disclaimer in the | ||
documentation and/or other materials provided with the distribution. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY | ||
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | ||
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
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,7 +1,5 @@ | ||
{ | ||
"packages": [ | ||
"packages/*" | ||
], | ||
"version": "0.0.0", | ||
"npmClient": "yarn" | ||
"npmClient": "yarn", | ||
"useWorkspaces": true | ||
} |
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,7 +1,67 @@ | ||
{ | ||
"name": "typescript-eslint", | ||
"private": true, | ||
"workspaces": [ | ||
"packages/*" | ||
], | ||
"author": "James Henry <typescript-eslint@jameshenry.blog>", | ||
"license": "BSD-2-Clause", | ||
"repository": "typescript-eslint/typescript-eslint", | ||
"bugs": { | ||
"url": "https://github.com/typescript-eslint/typescript-eslint/issues" | ||
}, | ||
"scripts": { | ||
"postinstall": "lerna bootstrap", | ||
"test": "lerna run test", | ||
"build": "lerna run build", | ||
"clean": "lerna run clean", | ||
"precommit": "yarn test && lint-staged", | ||
"cz": "git-cz", | ||
"commitmsg": "commitlint -E GIT_PARAMS", | ||
"check-format": "prettier --list-different \"./**/*.{ts,js,json,md}\"" | ||
}, | ||
"lint-staged": { | ||
"*.{ts,js,json,md}": [ | ||
"prettier --write", | ||
"git add" | ||
] | ||
}, | ||
"config": { | ||
"commitizen": { | ||
"path": "./node_modules/cz-conventional-changelog" | ||
} | ||
}, | ||
"commitlint": { | ||
"extends": [ | ||
"@commitlint/config-conventional" | ||
] | ||
}, | ||
"engines": { | ||
"node": ">=6.14.0" | ||
}, | ||
"devDependencies": { | ||
"lerna": "^3.10.5" | ||
"@babel/code-frame": "7.0.0", | ||
"@babel/parser": "7.2.3", | ||
"@commitlint/cli": "^7.1.2", | ||
"@commitlint/config-conventional": "^7.1.2", | ||
"@commitlint/travis-cli": "^7.1.2", | ||
"@types/babel-code-frame": "^6.20.1", | ||
"@types/jest": "^23.3.9", | ||
"@types/lodash.isplainobject": "^4.0.4", | ||
"@types/lodash.unescape": "^4.0.4", | ||
"@types/node": "^10.12.2", | ||
"@types/semver": "^5.5.0", | ||
"@types/shelljs": "^0.8.0", | ||
"cz-conventional-changelog": "2.1.0", | ||
"glob": "7.1.2", | ||
"husky": "0.14.3", | ||
"jest": "23.6.0", | ||
"lerna": "^3.10.5", | ||
"lint-staged": "7.3.0", | ||
"lodash.isplainobject": "4.0.6", | ||
"prettier": "^1.14.3", | ||
"shelljs": "0.8.2", | ||
"ts-jest": "^23.10.4", | ||
"typescript": "~3.2.1" | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,8 @@ | ||
{ | ||
"extends": "../../tsconfig.json", | ||
"compilerOptions": { | ||
"target": "es2017", | ||
"module": "commonjs", | ||
"declaration": true, | ||
"outDir": "./dist", | ||
"strict": true, | ||
"esModuleInterop": true | ||
"outDir": "./dist" | ||
}, | ||
"include": ["src"] | ||
} |
Oops, something went wrong.