mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-18 03:01:05 +01:00
allow linting of .js files and added tests for eslint config
This commit is contained in:
@@ -2,16 +2,19 @@
|
|||||||
"name": "@scm-manager/eslint-config",
|
"name": "@scm-manager/eslint-config",
|
||||||
"version": "2.0.0",
|
"version": "2.0.0",
|
||||||
"description": "ESLint configuration for scm-manager and its plugins",
|
"description": "ESLint configuration for scm-manager and its plugins",
|
||||||
"main": "index.js",
|
"main": "src/index.js",
|
||||||
"author": "Sebastian Sdorra <s.sdorra@gmail.com>",
|
"author": "Sebastian Sdorra <s.sdorra@gmail.com>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"private": false,
|
"private": false,
|
||||||
|
"scripts": {
|
||||||
|
"test": "jest"
|
||||||
|
},
|
||||||
"prettier": "@scm-manager/prettier-config",
|
"prettier": "@scm-manager/prettier-config",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/eslint-plugin": "^2.12.0",
|
"@typescript-eslint/eslint-plugin": "^2.12.0",
|
||||||
"@typescript-eslint/parser": "^2.12.0",
|
"@typescript-eslint/parser": "^2.12.0",
|
||||||
"babel-eslint": "^10.0.3",
|
"babel-eslint": "^10.0.3",
|
||||||
"eslint": "^6.5.1",
|
"eslint": "^7.2.0",
|
||||||
"eslint-config-prettier": "^6.4.0",
|
"eslint-config-prettier": "^6.4.0",
|
||||||
"eslint-config-react-app": "^5.0.2",
|
"eslint-config-react-app": "^5.0.2",
|
||||||
"eslint-plugin-flowtype": "^4.3.0",
|
"eslint-plugin-flowtype": "^4.3.0",
|
||||||
@@ -21,6 +24,9 @@
|
|||||||
"eslint-plugin-react": "^7.16.0",
|
"eslint-plugin-react": "^7.16.0",
|
||||||
"eslint-plugin-react-hooks": "^2.1.2"
|
"eslint-plugin-react-hooks": "^2.1.2"
|
||||||
},
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"jest": "^26.0.1"
|
||||||
|
},
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
}
|
}
|
||||||
|
|||||||
2
scm-ui/eslint-config/src/__resources__/Node.js
Normal file
2
scm-ui/eslint-config/src/__resources__/Node.js
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
var path = require('path')
|
||||||
|
console.log('we do not use path')
|
||||||
2
scm-ui/eslint-config/src/__resources__/Typescript.ts
Normal file
2
scm-ui/eslint-config/src/__resources__/Typescript.ts
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
const path = require('path');
|
||||||
|
console.log("from typscript");
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
console.log('from Sample.tsx')
|
||||||
@@ -21,8 +21,13 @@
|
|||||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
* SOFTWARE.
|
* SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
parser: "@typescript-eslint/parser",
|
parser: "@typescript-eslint/parser",
|
||||||
|
env: {
|
||||||
|
node: false,
|
||||||
|
browser: true
|
||||||
|
},
|
||||||
extends: ["react-app", "plugin:prettier/recommended", "plugin:@typescript-eslint/recommended"],
|
extends: ["react-app", "plugin:prettier/recommended", "plugin:@typescript-eslint/recommended"],
|
||||||
rules: {
|
rules: {
|
||||||
"prettier/prettier": "warn",
|
"prettier/prettier": "warn",
|
||||||
@@ -32,5 +37,14 @@ module.exports = {
|
|||||||
"@typescript-eslint/explicit-function-return-type": "off",
|
"@typescript-eslint/explicit-function-return-type": "off",
|
||||||
"@typescript-eslint/ban-ts-ignore": "warn",
|
"@typescript-eslint/ban-ts-ignore": "warn",
|
||||||
"no-console": "error"
|
"no-console": "error"
|
||||||
|
},
|
||||||
|
overrides: [
|
||||||
|
{
|
||||||
|
files: ["*.js"],
|
||||||
|
env: {
|
||||||
|
node: true,
|
||||||
|
browser: false
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
};
|
};
|
||||||
44
scm-ui/eslint-config/src/index.test.js
Normal file
44
scm-ui/eslint-config/src/index.test.js
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
const { ESLint } = require("eslint");
|
||||||
|
const path = require("path");
|
||||||
|
|
||||||
|
describe("should lint files", () => {
|
||||||
|
const eslint = new ESLint();
|
||||||
|
const resource = path.join(__dirname, "__resources__");
|
||||||
|
|
||||||
|
const lint = async file => {
|
||||||
|
const results = await eslint.lintFiles([path.join(resource, file)]);
|
||||||
|
|
||||||
|
const messages = results[0].messages;
|
||||||
|
|
||||||
|
const warnings = messages.filter(m => m.severity === 1).map(m => m.ruleId);
|
||||||
|
const errors = messages.filter(m => m.severity === 2).map(m => m.ruleId);
|
||||||
|
return {
|
||||||
|
errors,
|
||||||
|
warnings
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
const expectContains = (results, ...ids) => {
|
||||||
|
for (const id of ids) {
|
||||||
|
expect(results).toContain(id);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
it("should lint tsx files", async () => {
|
||||||
|
const { errors, warnings } = await lint("TypescriptWithJsx.tsx");
|
||||||
|
expectContains(errors, "no-console", "quotes", "semi");
|
||||||
|
expectContains(warnings, "prettier/prettier");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should lint js files", async () => {
|
||||||
|
const { errors, warnings } = await lint("Node.js");
|
||||||
|
expectContains(errors, "no-var", "no-console", "quotes", "semi");
|
||||||
|
expectContains(warnings, "prettier/prettier");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should lint ts files", async () => {
|
||||||
|
const { errors, warnings } = await lint("Typescript.ts");
|
||||||
|
expectContains(errors, "no-console", "quotes");
|
||||||
|
expectContains(warnings, "prettier/prettier");
|
||||||
|
});
|
||||||
|
});
|
||||||
Reference in New Issue
Block a user