UNPKG

247 BJavaScriptView Raw
1const path = require('path');
2
3module.exports = {
4 rulesDirectory: [
5 path.join(path.dirname(require.resolve('tslint-plugin-prettier')), './')
6 ],
7 rules: {
8 prettier: [true, {
9 singleQuote: true,
10 printWidth: 100
11 }]
12 }
13};