├── .editorconfig ├── .eslintrc.json ├── .github ├── FUNDING.yml └── workflows │ ├── main.yml │ └── publish.yml ├── .gitignore ├── .npmignore ├── .prettierrc ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── custom_types └── espree.d.ts ├── docs └── rules │ ├── attribute-names.md │ ├── attribute-value-entities.md │ ├── ban-attributes.md │ ├── binding-positions.md │ ├── lifecycle-super.md │ ├── no-classfield-shadowing.md │ ├── no-duplicate-template-bindings.md │ ├── no-invalid-escape-sequences.md │ ├── no-invalid-html.md │ ├── no-legacy-imports.md │ ├── no-legacy-template-syntax.md │ ├── no-native-attributes.md │ ├── no-private-properties.md │ ├── no-property-change-update.md │ ├── no-template-arrow.md │ ├── no-template-bind.md │ ├── no-template-map.md │ ├── no-this-assign-in-render.md │ ├── no-useless-template-literals.md │ ├── no-value-attribute.md │ ├── prefer-nothing.md │ ├── prefer-static-styles.md │ ├── quoted-expressions.md │ └── value-after-constraints.md ├── media └── eslint-lit.svg ├── package.json ├── src ├── configs │ ├── all.ts │ ├── legacy-all.ts │ ├── legacy-recommended.ts │ └── recommended.ts ├── index.ts ├── rules │ ├── attribute-names.ts │ ├── attribute-value-entities.ts │ ├── ban-attributes.ts │ ├── binding-positions.ts │ ├── lifecycle-super.ts │ ├── no-classfield-shadowing.ts │ ├── no-duplicate-template-bindings.ts │ ├── no-invalid-escape-sequences.ts │ ├── no-invalid-html.ts │ ├── no-legacy-imports.ts │ ├── no-legacy-template-syntax.ts │ ├── no-native-attributes.ts │ ├── no-private-properties.ts │ ├── no-property-change-update.ts │ ├── no-template-arrow.ts │ ├── no-template-bind.ts │ ├── no-template-map.ts │ ├── no-this-assign-in-render.ts │ ├── no-useless-template-literals.ts │ ├── no-value-attribute.ts │ ├── prefer-nothing.ts │ ├── prefer-static-styles.ts │ ├── quoted-expressions.ts │ └── value-after-constraints.ts ├── template-analyzer.ts ├── test │ ├── .eslintrc.json │ ├── configs_test.ts │ ├── rules │ │ ├── attribute-names_test.ts │ │ ├── attribute-value-entities_test.ts │ │ ├── ban-attributes_test.ts │ │ ├── binding-positions_test.ts │ │ ├── lifecycle-super_test.ts │ │ ├── no-classfield-shadowing_test.ts │ │ ├── no-duplicate-template-bindings_test.ts │ │ ├── no-invalid-escape-sequences_test.ts │ │ ├── no-invalid-html_test.ts │ │ ├── no-legacy-imports_test.ts │ │ ├── no-legacy-template-syntax_test.ts │ │ ├── no-native-attributes_test.ts │ │ ├── no-private-properties_test.ts │ │ ├── no-property-change-update_test.ts │ │ ├── no-template-arrow_test.ts │ │ ├── no-template-bind_test.ts │ │ ├── no-template-map_test.ts │ │ ├── no-this-assign-in-render_test.ts │ │ ├── no-useless-template-literals_test.ts │ │ ├── no-value-attribute_test.ts │ │ ├── prefer-nothing_test.ts │ │ ├── prefer-static-styles_test.ts │ │ ├── quoted-expressions_test.ts │ │ └── value-after-constraints_test.ts │ ├── template-analyzer_test.ts │ └── util_test.ts └── util.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: 43081j 2 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules/ 3 | lib/ 4 | *.swp 5 | .nyc_output/ 6 | coverage/ 7 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": true 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/README.md -------------------------------------------------------------------------------- /custom_types/espree.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/custom_types/espree.d.ts -------------------------------------------------------------------------------- /docs/rules/attribute-names.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/docs/rules/attribute-names.md -------------------------------------------------------------------------------- /docs/rules/attribute-value-entities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/docs/rules/attribute-value-entities.md -------------------------------------------------------------------------------- /docs/rules/ban-attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/docs/rules/ban-attributes.md -------------------------------------------------------------------------------- /docs/rules/binding-positions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/docs/rules/binding-positions.md -------------------------------------------------------------------------------- /docs/rules/lifecycle-super.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/docs/rules/lifecycle-super.md -------------------------------------------------------------------------------- /docs/rules/no-classfield-shadowing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/docs/rules/no-classfield-shadowing.md -------------------------------------------------------------------------------- /docs/rules/no-duplicate-template-bindings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/docs/rules/no-duplicate-template-bindings.md -------------------------------------------------------------------------------- /docs/rules/no-invalid-escape-sequences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/docs/rules/no-invalid-escape-sequences.md -------------------------------------------------------------------------------- /docs/rules/no-invalid-html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/docs/rules/no-invalid-html.md -------------------------------------------------------------------------------- /docs/rules/no-legacy-imports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/docs/rules/no-legacy-imports.md -------------------------------------------------------------------------------- /docs/rules/no-legacy-template-syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/docs/rules/no-legacy-template-syntax.md -------------------------------------------------------------------------------- /docs/rules/no-native-attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/docs/rules/no-native-attributes.md -------------------------------------------------------------------------------- /docs/rules/no-private-properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/docs/rules/no-private-properties.md -------------------------------------------------------------------------------- /docs/rules/no-property-change-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/docs/rules/no-property-change-update.md -------------------------------------------------------------------------------- /docs/rules/no-template-arrow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/docs/rules/no-template-arrow.md -------------------------------------------------------------------------------- /docs/rules/no-template-bind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/docs/rules/no-template-bind.md -------------------------------------------------------------------------------- /docs/rules/no-template-map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/docs/rules/no-template-map.md -------------------------------------------------------------------------------- /docs/rules/no-this-assign-in-render.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/docs/rules/no-this-assign-in-render.md -------------------------------------------------------------------------------- /docs/rules/no-useless-template-literals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/docs/rules/no-useless-template-literals.md -------------------------------------------------------------------------------- /docs/rules/no-value-attribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/docs/rules/no-value-attribute.md -------------------------------------------------------------------------------- /docs/rules/prefer-nothing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/docs/rules/prefer-nothing.md -------------------------------------------------------------------------------- /docs/rules/prefer-static-styles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/docs/rules/prefer-static-styles.md -------------------------------------------------------------------------------- /docs/rules/quoted-expressions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/docs/rules/quoted-expressions.md -------------------------------------------------------------------------------- /docs/rules/value-after-constraints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/docs/rules/value-after-constraints.md -------------------------------------------------------------------------------- /media/eslint-lit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/media/eslint-lit.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/package.json -------------------------------------------------------------------------------- /src/configs/all.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/configs/all.ts -------------------------------------------------------------------------------- /src/configs/legacy-all.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/configs/legacy-all.ts -------------------------------------------------------------------------------- /src/configs/legacy-recommended.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/configs/legacy-recommended.ts -------------------------------------------------------------------------------- /src/configs/recommended.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/configs/recommended.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/rules/attribute-names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/rules/attribute-names.ts -------------------------------------------------------------------------------- /src/rules/attribute-value-entities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/rules/attribute-value-entities.ts -------------------------------------------------------------------------------- /src/rules/ban-attributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/rules/ban-attributes.ts -------------------------------------------------------------------------------- /src/rules/binding-positions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/rules/binding-positions.ts -------------------------------------------------------------------------------- /src/rules/lifecycle-super.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/rules/lifecycle-super.ts -------------------------------------------------------------------------------- /src/rules/no-classfield-shadowing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/rules/no-classfield-shadowing.ts -------------------------------------------------------------------------------- /src/rules/no-duplicate-template-bindings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/rules/no-duplicate-template-bindings.ts -------------------------------------------------------------------------------- /src/rules/no-invalid-escape-sequences.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/rules/no-invalid-escape-sequences.ts -------------------------------------------------------------------------------- /src/rules/no-invalid-html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/rules/no-invalid-html.ts -------------------------------------------------------------------------------- /src/rules/no-legacy-imports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/rules/no-legacy-imports.ts -------------------------------------------------------------------------------- /src/rules/no-legacy-template-syntax.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/rules/no-legacy-template-syntax.ts -------------------------------------------------------------------------------- /src/rules/no-native-attributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/rules/no-native-attributes.ts -------------------------------------------------------------------------------- /src/rules/no-private-properties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/rules/no-private-properties.ts -------------------------------------------------------------------------------- /src/rules/no-property-change-update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/rules/no-property-change-update.ts -------------------------------------------------------------------------------- /src/rules/no-template-arrow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/rules/no-template-arrow.ts -------------------------------------------------------------------------------- /src/rules/no-template-bind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/rules/no-template-bind.ts -------------------------------------------------------------------------------- /src/rules/no-template-map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/rules/no-template-map.ts -------------------------------------------------------------------------------- /src/rules/no-this-assign-in-render.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/rules/no-this-assign-in-render.ts -------------------------------------------------------------------------------- /src/rules/no-useless-template-literals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/rules/no-useless-template-literals.ts -------------------------------------------------------------------------------- /src/rules/no-value-attribute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/rules/no-value-attribute.ts -------------------------------------------------------------------------------- /src/rules/prefer-nothing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/rules/prefer-nothing.ts -------------------------------------------------------------------------------- /src/rules/prefer-static-styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/rules/prefer-static-styles.ts -------------------------------------------------------------------------------- /src/rules/quoted-expressions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/rules/quoted-expressions.ts -------------------------------------------------------------------------------- /src/rules/value-after-constraints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/rules/value-after-constraints.ts -------------------------------------------------------------------------------- /src/template-analyzer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/template-analyzer.ts -------------------------------------------------------------------------------- /src/test/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/test/.eslintrc.json -------------------------------------------------------------------------------- /src/test/configs_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/test/configs_test.ts -------------------------------------------------------------------------------- /src/test/rules/attribute-names_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/test/rules/attribute-names_test.ts -------------------------------------------------------------------------------- /src/test/rules/attribute-value-entities_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/test/rules/attribute-value-entities_test.ts -------------------------------------------------------------------------------- /src/test/rules/ban-attributes_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/test/rules/ban-attributes_test.ts -------------------------------------------------------------------------------- /src/test/rules/binding-positions_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/test/rules/binding-positions_test.ts -------------------------------------------------------------------------------- /src/test/rules/lifecycle-super_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/test/rules/lifecycle-super_test.ts -------------------------------------------------------------------------------- /src/test/rules/no-classfield-shadowing_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/test/rules/no-classfield-shadowing_test.ts -------------------------------------------------------------------------------- /src/test/rules/no-duplicate-template-bindings_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/test/rules/no-duplicate-template-bindings_test.ts -------------------------------------------------------------------------------- /src/test/rules/no-invalid-escape-sequences_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/test/rules/no-invalid-escape-sequences_test.ts -------------------------------------------------------------------------------- /src/test/rules/no-invalid-html_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/test/rules/no-invalid-html_test.ts -------------------------------------------------------------------------------- /src/test/rules/no-legacy-imports_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/test/rules/no-legacy-imports_test.ts -------------------------------------------------------------------------------- /src/test/rules/no-legacy-template-syntax_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/test/rules/no-legacy-template-syntax_test.ts -------------------------------------------------------------------------------- /src/test/rules/no-native-attributes_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/test/rules/no-native-attributes_test.ts -------------------------------------------------------------------------------- /src/test/rules/no-private-properties_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/test/rules/no-private-properties_test.ts -------------------------------------------------------------------------------- /src/test/rules/no-property-change-update_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/test/rules/no-property-change-update_test.ts -------------------------------------------------------------------------------- /src/test/rules/no-template-arrow_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/test/rules/no-template-arrow_test.ts -------------------------------------------------------------------------------- /src/test/rules/no-template-bind_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/test/rules/no-template-bind_test.ts -------------------------------------------------------------------------------- /src/test/rules/no-template-map_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/test/rules/no-template-map_test.ts -------------------------------------------------------------------------------- /src/test/rules/no-this-assign-in-render_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/test/rules/no-this-assign-in-render_test.ts -------------------------------------------------------------------------------- /src/test/rules/no-useless-template-literals_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/test/rules/no-useless-template-literals_test.ts -------------------------------------------------------------------------------- /src/test/rules/no-value-attribute_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/test/rules/no-value-attribute_test.ts -------------------------------------------------------------------------------- /src/test/rules/prefer-nothing_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/test/rules/prefer-nothing_test.ts -------------------------------------------------------------------------------- /src/test/rules/prefer-static-styles_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/test/rules/prefer-static-styles_test.ts -------------------------------------------------------------------------------- /src/test/rules/quoted-expressions_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/test/rules/quoted-expressions_test.ts -------------------------------------------------------------------------------- /src/test/rules/value-after-constraints_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/test/rules/value-after-constraints_test.ts -------------------------------------------------------------------------------- /src/test/template-analyzer_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/test/template-analyzer_test.ts -------------------------------------------------------------------------------- /src/test/util_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/test/util_test.ts -------------------------------------------------------------------------------- /src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/src/util.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/43081j/eslint-plugin-lit/HEAD/tsconfig.json --------------------------------------------------------------------------------