nakarte

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

relax_protobuf.js (415B)


      1 'use strict';
      2 
      3 module.exports = {
      4     rules: {
      5         'curly': 'off',
      6         'strict': 'off',
      7         'max-len': 'off',
      8         'no-multiple-empty-lines': 'off',
      9         'space-before-function-paren': 'off',
     10         'quote-props': 'off',
     11         'no-var': 'off',
     12         'no-multi-assign': 'off',
     13         'quotes': 'off',
     14         'comma-dangle': ['error', 'only-multiline'],
     15         'no-shadow': 'off',
     16     },
     17 };