UNPKG

xweb-templating

Version:

A cli tool for converting 'tags' to regular html, php or some other format

67 lines 1.5 kB
{ "env": { "browser": true, "es2021": true }, "extends": [ "eslint:recommended", "plugin:@typescript-eslint/recommended" ], "overrides": [], "parser": "@typescript-eslint/parser", "parserOptions": { "ecmaVersion": "latest", "sourceType": "module" }, "plugins": [ "@typescript-eslint" ], "rules": { "indent": [ "error", 4 ], "linebreak-style": [ "error", "windows" ], "quotes": [ "error", "double" ], "semi": [ "error", "always" ], "@typescript-eslint/no-unused-vars": "error", "@typescript-eslint/consistent-type-definitions": [ "error", "type" ], "@typescript-eslint/naming-convention": [ "error", { "selector": "variableLike", "format": [ "snake_case", "UPPER_CASE" ] }, { "selector": "variable", "modifiers": [ "const" ], "format": [ "UPPER_CASE" ] }, { "selector": "typeLike", "format": [ "PascalCase" ] } ] } }