Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.eslintrc.js - github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 663d66a9f90039e441ae9597fdc0088d670cd4ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module.exports = {
	extends: [
		'@nextcloud'
	],
	overrides: [
    {
      'files': ['**/*.spec.js'],
      'rules': {
        'node/no-unpublished-import': 0
      }
    }
  ]
}