Migrate eslint to flat config
This commit is contained in:
parent
38ed3c3618
commit
adf8da85e9
7 changed files with 30 additions and 17 deletions
|
@ -1,2 +0,0 @@
|
||||||
dist
|
|
||||||
node_modules
|
|
10
.eslintrc.js
10
.eslintrc.js
|
@ -1,10 +0,0 @@
|
||||||
module.exports = {
|
|
||||||
root: true,
|
|
||||||
parser: "@typescript-eslint/parser",
|
|
||||||
plugins: ["@typescript-eslint"],
|
|
||||||
extends: [
|
|
||||||
"eslint:recommended",
|
|
||||||
"plugin:@typescript-eslint/recommended",
|
|
||||||
"prettier",
|
|
||||||
],
|
|
||||||
};
|
|
27
eslint.config.mjs
Normal file
27
eslint.config.mjs
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
import { FlatCompat } from "@eslint/eslintrc";
|
||||||
|
import path from "path";
|
||||||
|
import { fileURLToPath } from "url";
|
||||||
|
import ts from "@typescript-eslint/eslint-plugin";
|
||||||
|
import js from "@eslint/js";
|
||||||
|
import parser from "@typescript-eslint/parser";
|
||||||
|
|
||||||
|
const __filename = fileURLToPath(import.meta.url);
|
||||||
|
const __dirname = path.dirname(__filename);
|
||||||
|
|
||||||
|
const compat = new FlatCompat({
|
||||||
|
baseDirectory: __dirname
|
||||||
|
});
|
||||||
|
|
||||||
|
export default [
|
||||||
|
js.configs.recommended,
|
||||||
|
...compat.extends("plugin:@typescript-eslint/recommended"),
|
||||||
|
...compat.extends("prettier"),
|
||||||
|
{
|
||||||
|
ignores: [ "jest.config.js", "node_modules/*" ],
|
||||||
|
files: [ "**/*.ts" ],
|
||||||
|
languageOptions: {
|
||||||
|
parser: parser,
|
||||||
|
},
|
||||||
|
plugins: { "@typescript-eslint": ts },
|
||||||
|
}
|
||||||
|
];
|
|
@ -1,3 +1,4 @@
|
||||||
|
/* eslint-disable */
|
||||||
const { compilerOptions } = require("./tsconfig.json");
|
const { compilerOptions } = require("./tsconfig.json");
|
||||||
|
|
||||||
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
|
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
|
||||||
|
|
|
@ -13,8 +13,8 @@
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "yarn cache clean && rm -rf dist",
|
"clean": "yarn cache clean && rm -rf dist",
|
||||||
"lint": "yarn run eslint . --ext .ts",
|
"lint": "yarn run eslint .",
|
||||||
"lint:fix": "yarn run eslint --fix . --ext .ts",
|
"lint:fix": "yarn run eslint --fix .",
|
||||||
"format:check": "yarn run prettier --check src/**",
|
"format:check": "yarn run prettier --check src/**",
|
||||||
"format": "yarn run prettier --write src/**",
|
"format": "yarn run prettier --write src/**",
|
||||||
"test": "yarn jest",
|
"test": "yarn jest",
|
||||||
|
|
|
@ -2,7 +2,6 @@ import { Err, Ok } from "..";
|
||||||
import { isResult, __internals } from "../guards";
|
import { isResult, __internals } from "../guards";
|
||||||
|
|
||||||
describe("guards.ts", () => {
|
describe("guards.ts", () => {
|
||||||
/* eslint-disable @typescript-eslint/no-empty-function */
|
|
||||||
const combinators = {
|
const combinators = {
|
||||||
and: () => {},
|
and: () => {},
|
||||||
andThen: () => {},
|
andThen: () => {},
|
||||||
|
@ -16,7 +15,6 @@ describe("guards.ts", () => {
|
||||||
yieldOr: () => {},
|
yieldOr: () => {},
|
||||||
yieldOrElse: () => {},
|
yieldOrElse: () => {},
|
||||||
};
|
};
|
||||||
/* eslint-enable */
|
|
||||||
|
|
||||||
const mockSuccess = {
|
const mockSuccess = {
|
||||||
kind: "ok",
|
kind: "ok",
|
||||||
|
|
|
@ -213,7 +213,6 @@ export namespace Result {
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
||||||
yieldOr<U>(_: U, f: (t: T) => U): Result<U, never> {
|
yieldOr<U>(_: U, f: (t: T) => U): Result<U, never> {
|
||||||
return this.yield(f);
|
return this.yield(f);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue