Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Package updates #90

Merged
merged 5 commits into from
May 22, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "eslint-config",
"version": "10.0.0",
"version": "10.1.0",
"description": "Eslint configs generator",
"author": "Cecile Muller",
"license": "MIT",
Expand Down Expand Up @@ -32,8 +32,8 @@
"test": "npm run build && npm run test:lint && npm run test:eslint && npm run test:prettier"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "2.33.0",
"@typescript-eslint/parser": "2.33.0",
"@typescript-eslint/eslint-plugin": "3.0.0",
"@typescript-eslint/parser": "3.0.0",
"typescript": "3.9.3"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/commonjs/package.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"name":"@wildpeaks/eslint-config-commonjs","version":"10.0.0","description":"ESLint Config: undefined","main":"settings.js","files":["settings.js"],"repository":"https://github.com/wildpeaks/packages-eslint-config","keywords":["wildpeaks","eslint"],"author":"Cecile Muller","license":"MIT","bugs":{"url":"https://github.com/wildpeaks/packages-eslint-config/issues"},"homepage":"https://github.com/wildpeaks/packages-eslint-config#readme","dependencies":{}}
{"name":"@wildpeaks/eslint-config-commonjs","version":"10.1.0","description":"ESLint Config: undefined","main":"settings.js","files":["settings.js"],"repository":"https://github.com/wildpeaks/packages-eslint-config","keywords":["wildpeaks","eslint"],"author":"Cecile Muller","license":"MIT","bugs":{"url":"https://github.com/wildpeaks/packages-eslint-config/issues"},"homepage":"https://github.com/wildpeaks/packages-eslint-config#readme","dependencies":{}}
2 changes: 1 addition & 1 deletion packages/legacy/package.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"name":"@wildpeaks/eslint-config-legacy","version":"10.0.0","description":"ESLint Config: undefined","main":"settings.js","files":["settings.js"],"repository":"https://github.com/wildpeaks/packages-eslint-config","keywords":["wildpeaks","eslint"],"author":"Cecile Muller","license":"MIT","bugs":{"url":"https://github.com/wildpeaks/packages-eslint-config/issues"},"homepage":"https://github.com/wildpeaks/packages-eslint-config#readme","dependencies":{}}
{"name":"@wildpeaks/eslint-config-legacy","version":"10.1.0","description":"ESLint Config: undefined","main":"settings.js","files":["settings.js"],"repository":"https://github.com/wildpeaks/packages-eslint-config","keywords":["wildpeaks","eslint"],"author":"Cecile Muller","license":"MIT","bugs":{"url":"https://github.com/wildpeaks/packages-eslint-config/issues"},"homepage":"https://github.com/wildpeaks/packages-eslint-config#readme","dependencies":{}}
2 changes: 1 addition & 1 deletion packages/typescript/package.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"name":"@wildpeaks/eslint-config-typescript","version":"10.0.0","description":"ESLint Config: undefined","main":"settings.js","files":["settings.js"],"repository":"https://github.com/wildpeaks/packages-eslint-config","keywords":["wildpeaks","eslint"],"author":"Cecile Muller","license":"MIT","bugs":{"url":"https://github.com/wildpeaks/packages-eslint-config/issues"},"homepage":"https://github.com/wildpeaks/packages-eslint-config#readme","dependencies":{"typescript":"3.9.2","@typescript-eslint/eslint-plugin":"2.33.0","@typescript-eslint/parser":"2.33.0"}}
{"name":"@wildpeaks/eslint-config-typescript","version":"10.1.0","description":"ESLint Config: undefined","main":"settings.js","files":["settings.js"],"repository":"https://github.com/wildpeaks/packages-eslint-config","keywords":["wildpeaks","eslint"],"author":"Cecile Muller","license":"MIT","bugs":{"url":"https://github.com/wildpeaks/packages-eslint-config/issues"},"homepage":"https://github.com/wildpeaks/packages-eslint-config#readme","dependencies":{"typescript":"3.9.3","@typescript-eslint/eslint-plugin":"3.0.0","@typescript-eslint/parser":"3.0.0"}}
2 changes: 1 addition & 1 deletion packages/typescript/settings.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -460,6 +460,7 @@ function getEslintSettings({commonjs, es2017, esmodules, typescript}) {
eslintSettings.parser = "@typescript-eslint/parser";
eslintSettings.plugins.push("@typescript-eslint");
eslintSettings.parserOptions.project = "./tsconfig.json";
eslintSettings.parserOptions.warnOnUnsupportedTypeScriptVersion = false;
}

if (esmodules) {
Expand Down