├── .editorconfig ├── .eslintrc ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── package.json ├── test ├── index.js ├── rules.out ├── rules │ ├── curly.ts │ ├── handle-callback-err.ts │ ├── import-spacing.ts │ ├── no-constant-condition.ts │ ├── no-inner-declarations.ts │ ├── no-multi-spaces.ts │ ├── object-destruct-spacing.ts │ ├── semicolon.ts │ ├── space-within-parens.ts │ ├── ter-arrow-spacing.ts │ ├── ter-indent.ts │ └── trailing-comma.ts └── tsconfig.json └── tslint.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/tslint-config-standard/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/tslint-config-standard/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/tslint-config-standard/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/tslint-config-standard/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/tslint-config-standard/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/tslint-config-standard/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/tslint-config-standard/HEAD/package.json -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/tslint-config-standard/HEAD/test/index.js -------------------------------------------------------------------------------- /test/rules.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/tslint-config-standard/HEAD/test/rules.out -------------------------------------------------------------------------------- /test/rules/curly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/tslint-config-standard/HEAD/test/rules/curly.ts -------------------------------------------------------------------------------- /test/rules/handle-callback-err.ts: -------------------------------------------------------------------------------- 1 | export function cb (err) { 2 | console.log('hello world') 3 | } 4 | -------------------------------------------------------------------------------- /test/rules/import-spacing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/tslint-config-standard/HEAD/test/rules/import-spacing.ts -------------------------------------------------------------------------------- /test/rules/no-constant-condition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/tslint-config-standard/HEAD/test/rules/no-constant-condition.ts -------------------------------------------------------------------------------- /test/rules/no-inner-declarations.ts: -------------------------------------------------------------------------------- 1 | export const y: number = 10 2 | 3 | if (y === 0) { 4 | function test () {} 5 | } 6 | -------------------------------------------------------------------------------- /test/rules/no-multi-spaces.ts: -------------------------------------------------------------------------------- 1 | export const test = true 2 | -------------------------------------------------------------------------------- /test/rules/object-destruct-spacing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/tslint-config-standard/HEAD/test/rules/object-destruct-spacing.ts -------------------------------------------------------------------------------- /test/rules/semicolon.ts: -------------------------------------------------------------------------------- 1 | export const foo = true; 2 | -------------------------------------------------------------------------------- /test/rules/space-within-parens.ts: -------------------------------------------------------------------------------- 1 | function test ( a, b ) { 2 | return a < b 3 | } 4 | -------------------------------------------------------------------------------- /test/rules/ter-arrow-spacing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/tslint-config-standard/HEAD/test/rules/ter-arrow-spacing.ts -------------------------------------------------------------------------------- /test/rules/ter-indent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/tslint-config-standard/HEAD/test/rules/ter-indent.ts -------------------------------------------------------------------------------- /test/rules/trailing-comma.ts: -------------------------------------------------------------------------------- 1 | export const foo = { 2 | a: 1, 3 | b: 2, 4 | } 5 | -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/tslint-config-standard/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /tslint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeembrey/tslint-config-standard/HEAD/tslint.js --------------------------------------------------------------------------------