Exclude `*` from class completions

master
Brad Cornes 2021-12-06 16:06:30 +00:00
parent 80336ae320
commit f5006a8ff2
1 changed files with 6 additions and 3 deletions

View File

@ -876,9 +876,12 @@ async function createProjectService(
state.jitContext = state.modules.jit.createContext.module(state)
state.jitContext.tailwindConfig.separator = state.config.separator
if (state.jitContext.getClassList) {
state.classList = state.jitContext.getClassList().map((className) => {
return [className, { color: getColor(state, className) }]
})
state.classList = state.jitContext
.getClassList()
.filter((className) => className !== '*')
.map((className) => {
return [className, { color: getColor(state, className) }]
})
}
} else {
delete state.jitContext