3.5.4 • Published 7 years ago

tslint-loader v3.5.4

Weekly downloads
110,077
License
MIT
Repository
github
Last release
7 years ago

tslint-loader

Build Status Dependency Status devDependency Status peerDependency Status

Tslint loader for Webpack.

Installation

npm install tslint tslint-loader --save-dev

The package depends on Tslint 4.0+, no longer works with 3.* versions.

Usage

Apply the tslint loader as preLoader in your webpack configuration.

Webpack 4

module.exports = {
    module: {
        rules: [
            {
                test: /\.ts$/,
                enforce: 'pre',
                use: [
                    {
                        loader: 'tslint-loader',
                        options: { /* Loader options go here */ }
                    }
                ]
            }
        ]
    }
}

Webpack 3

module.exports = {
    module: {
        loaders: [
            {
                test: /\.ts$/,
                enforce: 'pre',
                loader: 'tslint-loader',
                options: { /* Loader options go here */ }
            }
        ]
    }
}

Webpack 2

module.exports = {
    module: {
        rules: [
            {
                test: /\.ts$/,
                enforce: 'pre',
                loader: 'tslint-loader',
                options: { /* Loader options go here */ }
            }
        ]
    }
}

Webpack 1

module.exports = {
    module: {
        preLoaders: [
            {
                test: /\.ts$/,
                loader: 'tslint-loader'
            }
        ]
    },

    tslint: { /* Loader options go here */ }
}

Loader options

{
    configuration: {
        rules: {
            quotemark: [true, 'double']
        }
    },
    
    // can specify a custom config file relative to current directory or with absolute path
    // 'tslint-custom.json'
    configFile: false,
    
    // tslint errors are displayed by default as warnings
    // set emitErrors to true to display them as errors
    emitErrors: false,
    
    // tslint does not interrupt the compilation by default
    // if you want any file with tslint errors to fail
    // set failOnHint to true
    failOnHint: true,
    
    // enables type checked rules like 'for-in-array'
    // uses tsconfig.json from current working directory
    typeCheck: false,
    
    // automatically fix linting errors
    fix: false,
    
    // can specify a custom tsconfig file relative to current directory or with absolute path
    // to be used with type checked rules
    tsConfigFile: 'tsconfig.json',
    
    // name of your formatter (optional)
    formatter: 'yourformatter',
    
    // path to directory containing formatter (optional)
    formattersDirectory: 'node_modules/tslint-loader/formatters/',
    
    // These options are useful if you want to save output to files
    // for your continuous integration server
    fileOutput: {
        // The directory where each file's report is saved
        dir: './foo/',
    
        // The extension to use for each report's filename. Defaults to 'txt'
        ext: 'xml',
    
        // If true, all files are removed from the report directory at the beginning of run
        clean: true,
    
        // A string to include at the top of every report file.
        // Useful for some report formats.
        header: '<?xml version="1.0" encoding="utf-8"?>\n<checkstyle version="5.7">',
    
        // A string to include at the bottom of every report file.
        // Useful for some report formats.
        footer: '</checkstyle>'
    }
}

License

MIT

@christensena/react-scripts@christensena/react-scripts-ts@tsukiy0/react-scriptsiscshidev@yarvis/angularchoerodon-hap-front-bootng2workspace-addon-webpack-tslintngprogressbarwebpack-toolbox@infinitebrahmanuniverse/nolb-tsltimefun@everything-registry/sub-chunk-2982wpbsaf-webpack-sudoku356-testwodax-af-webpackwakfu-react-scriptsvue-audio-playwpdxly_af-webpackthanos-clivova-webpackuwbm_builderuwbs_buildervenus-lib-infernovenus-core-infernovenus-core-reactves-cli@codebuild-hu/cookie-jar@devbin/react-scripts-ts-cssmodules@devex-web-frontend/react-scripts-dx@domoinc/ryuu-angular@dojo/cli-build-webpack@dojo/cli-build-widget@boty-design/fe-cli@beisen/talent-ui-webpack-config@beisen/talentui-webpack-configjk-build-suitejoys-react-h5-scriptsjoys-react-scriptsjsl_kitjunaidtestjunaidtest1lbglisting-cli@jazeee-org/react-scripts-ts@hogssys/docker-utilsprout-web-uisunmi-clissrframe-tooltypereact-clits-2022-axiosts-electron-react-scriptubase-vue-tsthe-complete-typescript-cratquinlan92-webpack-utilstowerflowtsrex@amd-core/webpack-config@ashelley/react-scripts-typescript@average-gate/bundler@atelieropenas/bundler@ailjc/rs-use-tslint-config@axelhzf/react-scripts-ts@axilis/node-scripts@axilis/react-scripts@balinj/build@beisen/italent-webpack-config-text@baristalabs/react-scripts-ts@baristalabs/react-scripts-ts-ce@bestminr/build@bestminr/build-library@blorajs/af-webpack@berun/runner-tslint@charge/sdk@abc.xyz/drop-down-treeview@bentley/webpack-tools@digest/webpack-tslint@cqqb-team/smart@cqqb-team/smart-cliyh-choerodon-front-bootyh-choerodon-front-boot-testzc-react-scriptsyanqian-front-bootymhy-uiyunxi-choerodon-front-bootxy-app-bridgeyuanian-webpack-configvue2dow-webpackwapp-cliwebpack-config-typescriptwebpack-kit-nimedev-tswebpack-parts-nimedevwebpack-digestwebpack-hollwebpack-ts-buildwebpack-typescript-builderuniversal-clits-axios-by-duduts-axios-lits-axios-sunqun
3.5.4

7 years ago

3.6.0

7 years ago

3.5.3

8 years ago

3.5.2

8 years ago

3.5.1

8 years ago

3.4.3

8 years ago

3.4.2

8 years ago

3.4.1

8 years ago

3.4.0

8 years ago

3.3.0

9 years ago

3.2.1

9 years ago

3.2.0

9 years ago

3.1.0

9 years ago

3.0.0

9 years ago

2.1.5

9 years ago

2.1.4

9 years ago

2.1.2

9 years ago

2.1.3

9 years ago

2.1.1

9 years ago

2.1.0

10 years ago

2.0.0

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago

0.9.1

10 years ago

0.9.0

10 years ago

0.0.1

10 years ago