Part of https://www.notion.so/Implement-stacks-1b5a6b22d472806a82f5dafed6955138 Reviewed-on: LaconicNetwork/cosmjs#1 Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
22 lines
467 B
JavaScript
22 lines
467 B
JavaScript
const eslint = require("@eslint/js");
|
|
const tseslint = require("typescript-eslint");
|
|
|
|
module.exports = tseslint.config(
|
|
eslint.configs.recommended,
|
|
...tseslint.configs.recommended,
|
|
{
|
|
files: ["src/**/*.ts"],
|
|
languageOptions: {
|
|
parser: tseslint.parser,
|
|
parserOptions: {
|
|
ecmaVersion: 2020,
|
|
sourceType: "module",
|
|
project: "./tsconfig.json",
|
|
},
|
|
},
|
|
rules: {
|
|
// Add any specific rules here
|
|
},
|
|
}
|
|
);
|