Files
nextcloud-maps/.eslintrc.js
Tobias Speicher 704000f08d Replace deprecated String.prototype.substr()
.substr() is deprecated so we replace it with .slice() which works similarily but isn't deprecated

Signed-off-by: Tobias Speicher <rootcommander@gmail.com>
2022-04-14 18:16:51 +02:00

21 lines
369 B
JavaScript

module.exports = {
globals: {
appVersion: true
},
parserOptions: {
requireConfigFile: false
},
extends: [
'@nextcloud'
],
rules: {
'no-restricted-properties': [
'error',
{ property: 'substr', message: 'Use .slice instead of .substr.' },
],
'jsdoc/require-jsdoc': 'off',
'jsdoc/tag-lines': 'off',
'vue/first-attribute-linebreak': 'off'
}
}