nakarte

Source code of https://map.sikmir.ru (fork)
git clone git://git.sikmir.ru/nakarte
Log | Files | Refs | LICENSE

prettier.js (506B)


      1 'use strict';
      2 
      3 module.exports = {
      4     extends: ['prettier'],
      5     plugins: ['prettier'],
      6     rules: {
      7         'prettier/prettier': 'error',
      8         /* rules softly disabled by prettier config*/
      9         'max-len': ['error', {code: 120}],
     10         'arrow-body-style': ['error', 'as-needed'],
     11         'curly': 'error',
     12         'no-confusing-arrow': 'error',
     13         'no-tabs': 'error',
     14         'no-unexpected-multiline': 'error',
     15         'quotes': ['error', 'single', {allowTemplateLiterals: false}],
     16     },
     17 };