passport-microsoft
Version:
Microsoft [Graph] authentication strategy for Passport.
30 lines (29 loc) • 412 B
JavaScript
module.exports = {
'env': {
'node': true,
'commonjs': true,
'es2021': true
},
'extends': 'eslint:recommended',
'parserOptions': {
'ecmaVersion': 'latest'
},
'rules': {
'indent': [
'error',
2
],
'linebreak-style': [
'error',
'unix'
],
'quotes': [
'error',
'single'
],
'semi': [
'error',
'always'
]
}
};