We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df0bdb2 commit c12391cCopy full SHA for c12391c
lib/rules/typescript.js
@@ -28,6 +28,12 @@ module.exports = {
28
},
29
],
30
31
+ /**
32
+ * @see https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/semi.md
33
+ */
34
+ semi: 'off',
35
+ '@typescript-eslint/semi': [ 'error' ],
36
+
37
/**
38
* @see https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-use-before-define.md
39
*/
test/fixtures/ts-app/semi/semi.ts
@@ -1,2 +1,8 @@
1
export const abc = 123;
2
-export interface SPI {}
+export interface SPI {
3
4
+}
5
6
+export default interface NewSPI {
7
8
0 commit comments