mirror of
https://github.com/umap-project/umap.git
synced 2025-05-05 22:11:50 +02:00
12 lines
153 B
JavaScript
12 lines
153 B
JavaScript
module.exports = {
|
|
env: {
|
|
browser: true,
|
|
es2021: true,
|
|
},
|
|
globals: {
|
|
L: 'writable',
|
|
},
|
|
rules: {
|
|
curly: ['warn', 'all'],
|
|
},
|
|
}
|