To untabify the whole buffer upon opening a file that uses web-mode, you could add something like this to your init file:
(add-hook 'web-mode-hook
(lambda () (untabify (point-min) (point-max))))
This assumes that `web-mode` is the name of the mode you want this setting to apply to; adjust to taste.