-
Notifications
You must be signed in to change notification settings - Fork 0
/
.dir-locals.el
92 lines (90 loc) · 2.73 KB
/
.dir-locals.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
;; Contains all the default values from:
;; https://github.com/python-lsp/python-lsp-server/blob/develop/pylsp/config/schema.json
;; From looking at the server output, some plugins support additional options.
;; `jsonrpc--json-encode' calls `json-serialize' with (:false-object :json-false) and (:null-object nil).
;; ((nil
;; . ((eglot-workspace-configuration
;; . (:pylsp (:plugins (:jedi_completion (:include_params t
;; :fuzzy t)
;; :pylint (:enabled t)))
;; :gopls (:usePlaceholders t)))))
;; (python-base-mode . ((indent-tabs-mode . nil)))
;; (go-mode . ((indent-tabs-mode . t))))
((python-ts-mode
. ((eglot-workspace-configuration
. ((pylsp
. ((configurationSources . ["pycodestyle"])
(plugins
(autopep8 (enabled . :json-false))
(pylsp_black (enabled . t))
(pyls_isort (enabled . t))
(flake8
(config . nil)
(enabled . :json-false)
(exclude . nil)
(executable . "flake8")
(filename . nil)
(hangClosing . nil)
(ignore . nil)
(maxLineLength . nil)
(indentSize . nil)
(perFileIgnores . nil)
(select . nil))
(jedi (extra_paths . [])
(env_vars . nil)
(environment . nil))
(jedi_completion
(enabled . t)
(include_params . t)
(include_class_objects . t)
(fuzzy . :json-false)
(eager . :json-false)
(resolve_at_most . 25)
(cache_for . ["pandas" "numpy" "tensorflow" "matplotlib"]))
(jedi_definition
(enabled . t)
(follow_imports . t)
(follow_builtin_imports . t))
(jedi_hover
(enabled . t))
(jedi_references
(enabled . t))
(jedi_signature_help
(enabled . t))
(jedi_symbols
(enabled . t)
(all_scopes . t)
(include_import_symbols . t))
(mccabe
(enabled . t)
(threshold . 15))
(preload
(enabled . t)
(modules . nil))
(pycodestyle
(enabled . t)
(exclude . nil)
(filename . nil)
(select . nil)
(ignore . nil)
(hangClosing . nil)
(maxLineLength . nil)
(indentSize . nil))
(pydocstyle
(enabled . :json-false)
(convention . nil)
(addIgnore . nil)
(addSelect . nil)
(ignore . nil)
(select . nil)
(match . "(?!test_).*\\.py")
(matchDir . "[^\\.].*"))
(pyflakes (enabled . t))
(pylint
(enabled . t)
(args . nil)
(executable . nil))
(rope_completion
(enabled . t)
(eager . :json-false))
(yapf (enabled . t))))))))))